home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / NR4USER.C < prev    next >
C/C++ Source or Header  |  1989-08-12  |  5KB  |  225 lines

  1. /* net/rom level 4 (transport) protocol user level calls
  2.  * Copyright 1989 by Daniel M. Frank, W9NK.  Permission granted for
  3.  * non-commercial distribution only.
  4.  */
  5.  
  6. #include <stdio.h>
  7. #include "global.h"
  8. #include "mbuf.h"
  9. #include "timer.h"
  10. #include "ax25.h"
  11. #include "lapb.h"
  12. #include "netrom.h"
  13. #include "nr4.h"
  14. #include <ctype.h>
  15.  
  16. #undef NR4DEBUG
  17.  
  18. /* Open a NET/ROM transport connection */
  19. struct nr4cb *
  20. open_nr4(local,remote,mode,r_upcall,t_upcall,s_upcall,user)
  21. struct nr4_addr *local ;    /* local node address */
  22. struct nr4_addr *remote ;    /* destination node address */
  23. int mode ;            /* active/passive/server */
  24. void (*r_upcall)() ;        /* received data upcall */
  25. void (*t_upcall)() ;        /* transmit upcall */
  26. void (*s_upcall)() ;        /* state change upcall */
  27. int user ;            /* user linkage area */
  28. {
  29.     struct nr4cb *cb ;
  30.     struct nr4hdr hdr ;
  31.     struct nr4_addr nr4tmp;
  32.  
  33.     if ((cb = new_n4circ()) == NULLNR4CB)
  34.         return NULLNR4CB ;        /* No circuits available */
  35.  
  36.     if(remote == NULLNRADDR){
  37.         remote = &nr4tmp;
  38.         setcall(remote->user_call," ");
  39.         setcall(remote->node_call," ");
  40.     }
  41.     
  42.     /* Stuff what info we can into control block */
  43.  
  44.     ASSIGN(cb->remote,*remote) ;
  45.     /* Save local address for connect retries */
  46.     ASSIGN(cb->local,*local) ;
  47.  
  48.     cb->r_upcall = r_upcall ;
  49.     cb->t_upcall = t_upcall ;
  50.     cb->s_upcall = s_upcall ;
  51.     cb->user = user ;
  52.     cb->clone = 0 ;
  53.  
  54.     switch(mode){
  55.     case AX_SERVER:
  56.         cb->clone = 1;
  57.     case AX_PASSIVE:    /* Note fall-thru */
  58.         cb->state = NR4STLISTEN;
  59.         return cb;
  60.     case AX_ACTIVE:
  61.         break;
  62.     }    
  63.     /* Format connect request header */
  64.  
  65.     hdr.opcode = NR4OPCONRQ ;
  66.     hdr.u.conreq.myindex = cb->mynum ;
  67.     hdr.u.conreq.myid = cb->myid ;
  68.     hdr.u.conreq.window = Nr4window ;
  69.     memcpy(&hdr.u.conreq.user,local->user_call,AXALEN);
  70.  
  71.     /* If I have a unique callsign per interface, then a layer violation */
  72.     /* will be required to determine the "real" callsign for my */
  73.     /* (virtual) node.  This suggests that callsign-per-interface is not */
  74.     /* desirable, which answers *that* particular open question. */
  75.     
  76.     memcpy(&hdr.u.conreq.node,local->node_call,AXALEN);
  77.  
  78.     /* Set and start connection retry timer */
  79.  
  80.     cb->cdtries = 1 ;
  81.     cb->srtt = Nr4irtt ;
  82.     cb->tcd.start = (2 * cb->srtt) / MSPTICK ;
  83.     cb->tcd.func = nr4cdtimeout ;
  84.     cb->tcd.arg = cb ;
  85.     start_timer(&cb->tcd) ;
  86.     
  87.     /* Send connect request packet */
  88.  
  89.     nr4sframe((struct ax25_addr *)remote->node_call,&hdr,NULLBUF) ;
  90.  
  91.     /* Set up initial state and signal state change */
  92.  
  93.     cb->state = NR4STDISC ;
  94.     nr4state(cb, NR4STCPEND) ;
  95.  
  96.     /* Return control block address */
  97.  
  98.     return cb ;
  99. }
  100.  
  101. /* Send a net/rom transport data packet */
  102. int
  103. send_nr4(cb,bp)
  104. struct nr4cb *cb ;
  105. struct mbuf *bp ;
  106. {
  107.     if (cb == NULLNR4CB || bp == NULLBUF)
  108.         return -1 ;
  109.     enqueue(&cb->txq,bp) ;
  110.     return nr4output(cb) ;
  111. }
  112.  
  113. /* Receive incoming net/rom transport data */
  114. struct mbuf *
  115. recv_nr4(cb,cnt)
  116. struct nr4cb *cb ;
  117. int16 cnt ;
  118. {
  119.     struct mbuf *bp ;
  120.  
  121.     if (cb->rxq == NULLBUF)
  122.         return NULLBUF ;
  123.  
  124.     if (cnt == 0) {
  125.         bp = cb->rxq ;            /* Just give `em everything */
  126.         cb->rxq = NULLBUF ;
  127.     }
  128.     else {
  129.         if((bp = alloc_mbuf(cnt)) == NULLBUF)
  130.             return NULLBUF;
  131.         bp->cnt = pullup(&cb->rxq,bp->data,cnt);
  132.     }
  133.     /* If this has un-choked us, reopen the window */
  134.     if (cb->qfull && len_mbuf(cb->rxq) < Nr4qlimit) {
  135.         cb->qfull = 0 ;                /* Choke flag off */
  136.         nr4ackit(cb) ;        /* Get things rolling again */
  137.     }
  138.  
  139.     return bp ;
  140. }
  141.  
  142. /* Close a NET/ROM connection */
  143. void
  144. disc_nr4(cb)
  145. struct nr4cb *cb ;
  146. {
  147.     struct nr4hdr hdr ;
  148.     
  149.     if (cb->state == NR4STLISTEN) {
  150.         free_n4circ(cb);
  151.         return;
  152.     }
  153.     if (cb->state != NR4STCON)
  154.         return ;
  155.  
  156.     /* Format disconnect request packet */
  157.     
  158.     hdr.opcode = NR4OPDISRQ ;
  159.     hdr.yourindex = cb->yournum ;
  160.     hdr.yourid = cb->yourid ;
  161.  
  162.     /* Set and start timer */
  163.     
  164.     cb->cdtries = 1 ;
  165.     cb->tcd.start = (2 * cb->srtt) / MSPTICK ;
  166.     cb->tcd.func = nr4cdtimeout ;
  167.     cb->tcd.arg = cb ;
  168.     start_timer(&cb->tcd) ;
  169.  
  170.     /* Send packet */
  171.  
  172.     nr4sframe((struct ax25_addr *)cb->remote.node_call, &hdr, NULLBUF) ;
  173.  
  174.     /* Signal state change.  nr4state will take care of stopping */
  175.     /* the appropriate timers and resetting window pointers. */
  176.  
  177.     nr4state(cb, NR4STDPEND) ;
  178.     
  179. }
  180.  
  181. /* Abruptly terminate a NET/ROM transport connection */
  182. void
  183. reset_nr4(cb)
  184. struct nr4cb *cb ;
  185. {
  186.     cb->dreason = NR4RRESET ;
  187.     nr4state(cb,NR4STDISC) ;
  188. }
  189.  
  190.  
  191. /* Force retransmission on a NET/ROM transport connection */
  192. int
  193. kick_nr4(cb)
  194. struct nr4cb *cb ;
  195. {
  196.     unsigned seq ;
  197.     struct timer *t ;
  198.  
  199.     if(!nr4valcb(cb))
  200.         return -1 ;
  201.  
  202.     switch (cb->state) {
  203.       case NR4STCPEND:
  204.       case NR4STDPEND:
  205.           stop_timer(&cb->tcd) ;
  206.         nr4cdtimeout(cb) ;
  207.         break ;
  208.  
  209.       case NR4STCON:
  210.         if (cb->nextosend != cb->ackxpected) {    /* if send window is open: */
  211.             for (seq = cb->ackxpected ;
  212.                  nr4between(cb->ackxpected, seq, cb->nextosend) ;
  213.                  seq = (seq + 1) & NR4SEQMASK) {
  214.                 t = &cb->txbufs[seq % cb->window].tretry ;
  215.                 stop_timer(t) ;
  216.                 t->state = TIMER_EXPIRE ;    /* fool retry routine */
  217.             }
  218.             nr4txtimeout(cb) ;
  219.         }
  220.         break ;
  221.     }
  222.  
  223.     return 0 ;
  224. }
  225.